home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / DIRENT.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  195b  |  12 lines

  1. #ifndef _LINUX_DIRENT_H
  2. #define _LINUX_DIRENT_H
  3.  
  4. struct dirent {
  5.     long        d_ino;
  6.     __kernel_off_t    d_off;
  7.     unsigned short    d_reclen;
  8.     char        d_name[256]; /* We must not include limits.h! */
  9. };
  10.  
  11. #endif
  12.